#hash
Description: Get the hash value of an object (calls the object's __hash__
method).
def hash(obj):
'''
Get the hash value
:param obj: An object
:return: The hash value of the object
'''
Example:
print(hash(0))
print(hash(233))
print(hash(3.1415926))
print(hash(''))
print(hash('hello world'))